.input-container input[type="text"] {
    padding: 10px;
    width: 100%;
    max-width: 400px; /* Adjust the maximum width as needed */
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
  }

  .download-button {
    display: block;
    width: 100%;
    padding: 10px;
    background-color: #007bff;
    color: #fff;
    text-align: center;
    text-decoration: none;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s; 
  }

  .download-button:hover {
    background-color: #0056b3;
  }

  .secondary-button {
    display: block;
    width: 100%;
    padding: 10px;
    background-color: #ccc;
    color: #333;
    text-align: center;
    text-decoration: none;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
  }

  .secondary-button:hover {
    background-color: #999;
  }

  .result-container {
    text-align: center;
    margin-top: 20px;
  }

  .result-container video {
    max-width: 100%;
    display: none;
  }

  .result-container .video-description {
    margin-top: 10px;
    color: #333;
  }

  .download-link-container {
    text-align: center;
    margin-top: 10px;
  }

  .download-link {
    display: inline-block;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
    transition: background-color 0.3s;
  }

  .download-link:hover {
    background-color: #0056b3;
  }

  .loading-spinner {
    display: none;
    margin-top: 20px;
    text-align: center;
  }

  .loading-spinner .spinner {
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-left-color: #007bff;
    border-radius: 50%;
    animation: spin 1s ease-in-out infinite;
  }

  @keyframes spin {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
@media screen and (max-width: 768px) {
          /* Hide the widget on screens smaller than 768 pixels */
          .sticky-widget {
              display: none;
          }
      }
